SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 67918: The QLIM procedure generates a Read Access Violation error when the OVERID option is specified

DetailsAboutRate It

If the OVERID option is specified in the ENDOGENOUS statement or the MODEL statement in PROC QLIM, the following error messages might be issued in the log:

ERROR:  An exception has been encountered.
Please contact technical support and provide them with the following traceback information:
The SAS task name is [QLIM]
ERROR:  Read Access Violation QLIM
Exception occurred at (70B8A011)
Task Traceback

When this error is produced, the overidentification test statistic and p-value are omitted from the output.

To circumvent the problem, specify two separate PROC QLIM steps. In the first PROC QLIM step, remove the OVERID option and obtain parameter estimates and output statistics. In the second PROC QLIM step, compute the overidentification test statistic and p-value as follows:

  • Add all of the overidentifying instruments originally specified in the OVERID option to the structural equation.
  • Specify the LR option in a TEST statement to test whether all of the added overidentifying instruments in the structural equation are jointly equal to zero.

If an overidentifying instrument is a CLASS variable, then the test should include parameters for all levels of the CLASS variable except for the reference level. The likelihood ratio test statistic and p-value produced in the output are the overidentification test statistic and p-value.

Here is an example that illustrates the circumvention.

Suppose the following PROC QLIM step generates the errors shown above:

proc qlim data=a;
   model y1 = y2 z1 z2 / discrete overid(y2.z4 y2.y5);
   model y2 = z1 z2 z3 z4 z5;
run;

To avoid the error, first run the PROC QLIM step without the OVERID option and obtain parameter estimates and output statistics:

proc qlim data=a;
   model y1 = y2 z1 z2 / discrete;
   model y2 = z1 z2 z3 z4 z5;
run;

Then, to compute the overidentification test, add the overidentifying instruments originally specified in the OVERID option in the structural equation. In this example, the overidentification instruments z4 and z5 are added to the structural equation y1. Specify the LR option in a TEST statement to test the hypothesis that the overidentifying instruments z4 and z5 are jointly equal to zero in the structural equation:

proc qlim data=a;
   model y1 = y2 z1 z2 z4 z5/ discrete;
   model y2 = z1 z2 z3 z4 z5;
   test y1.z4 = 0, y1.z5=0 / lr ;
run;

The reported LR test statistic and p-value are the overidentification test statistic and p-value.

Here is an example of the circumvention if the original model includes a CLASS variable. Suppose the overidentifying instrument z4 is a CLASS variable with levels 1, 2, 3, 4, and 5, and level 5 is the reference level with an estimate of 0.

proc qlim data=a;
   class z4 ;
   model y1 = y2 z1 z2 / discrete overid(y2.z4 y2.y5);
   model y2 = z1 z2 z3 z4 z5;
run;

As in the previous example, the first PROC QLIM step is as follows:

proc qlim data=a;
   class z4 ;
   model y1 = y2 z1 z2 / discrete;
   model y2 = z1 z2 z3 z4 z5;
run;

Here is the second PROC QLIM step for the circumvention when a CLASS variable is involved:

proc qlim data=a;
   class z4 ;
   model y1 = y2 z1 z2 z4 z5/ discrete ;
   model y2 = z1 z2 z3 z4 z5;
   test y1.z4_1 = y1.z4_2 = y1.z4_3 = y1.z4_4 =0, y1.z5 = 0 / lr ;
run;


Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemSAS/ETSz/OS13.115.19.4 TS1M19.4 TS1M6
Microsoft® Windows® for x6413.115.19.4 TS1M19.4 TS1M6
Microsoft Windows 8 Enterprise 32-bit13.115.19.4 TS1M19.4 TS1M6
Microsoft Windows 8 Enterprise x6413.115.19.4 TS1M19.4 TS1M6
Microsoft Windows 8 Pro 32-bit13.115.19.4 TS1M19.4 TS1M6
Microsoft Windows 8 Pro x6413.115.19.4 TS1M19.4 TS1M6
Microsoft Windows 8.1 Enterprise 32-bit13.115.19.4 TS1M19.4 TS1M6
Microsoft Windows 8.1 Enterprise x6413.115.19.4 TS1M19.4 TS1M6
Microsoft Windows 8.1 Pro 32-bit13.115.19.4 TS1M19.4 TS1M6
Microsoft Windows 8.1 Pro x6413.115.19.4 TS1M19.4 TS1M6
Microsoft Windows 1013.115.19.4 TS1M19.4 TS1M6
Microsoft Windows Server 200813.115.19.4 TS1M19.4 TS1M6
Microsoft Windows Server 2008 R213.115.19.4 TS1M19.4 TS1M6
Microsoft Windows Server 2008 for x6413.115.19.4 TS1M19.4 TS1M6
Microsoft Windows Server 2012 Datacenter13.115.19.4 TS1M19.4 TS1M6
Microsoft Windows Server 2012 R2 Datacenter13.115.19.4 TS1M19.4 TS1M6
Microsoft Windows Server 2012 R2 Std13.115.19.4 TS1M19.4 TS1M6
Microsoft Windows Server 2012 Std13.115.19.4 TS1M19.4 TS1M6
Windows 7 Enterprise 32 bit13.115.19.4 TS1M19.4 TS1M6
Windows 7 Enterprise x6413.115.19.4 TS1M19.4 TS1M6
Windows 7 Home Premium 32 bit13.115.19.4 TS1M19.4 TS1M6
Windows 7 Home Premium x6413.115.19.4 TS1M19.4 TS1M6
Windows 7 Professional 32 bit13.115.19.4 TS1M19.4 TS1M6
Windows 7 Professional x6413.115.19.4 TS1M19.4 TS1M6
Windows 7 Ultimate 32 bit13.115.19.4 TS1M19.4 TS1M6
Windows 7 Ultimate x6413.115.19.4 TS1M19.4 TS1M6
64-bit Enabled AIX13.115.19.4 TS1M19.4 TS1M6
64-bit Enabled Solaris13.115.19.4 TS1M19.4 TS1M6
HP-UX IPF13.115.19.4 TS1M19.4 TS1M6
Linux for x6413.115.19.4 TS1M19.4 TS1M6
Solaris for x6413.115.19.4 TS1M19.4 TS1M6
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.